runtime.mspan.next (field)
20 uses
runtime (current package)
arena.go#L331: a.fullList = s.next
arena.go#L332: s.next = nil
arena.go#L393: s.next = a.fullList
mheap.go#L397: next *mspan // next span in list, or nil if none
mheap.go#L1701: span.next = nil
mheap.go#L1739: list.first = span.next
mheap.go#L1741: span.prev.next = span.next
mheap.go#L1746: span.next.prev = span.prev
mheap.go#L1748: span.next = nil
mheap.go#L1758: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1759: println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
mheap.go#L1762: span.next = list.first
mheap.go#L1776: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1777: println("runtime: failed mSpanList.insertBack", span, span.next, span.prev, span.list)
mheap.go#L1783: list.last.next = span
mheap.go#L1800: for s := other.first; s != nil; s = s.next {
mheap.go#L1809: other.last.next = list.first
stack.go#L1257: next := s.next
stack.go#L1273: next := s.next
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |